home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / BUS / BibTeX 1.06 FAT.sit / BibTeX ƒ / Source code / BibTeXConstants.h < prev    next >
C/C++ Source or Header  |  1996-05-02  |  4KB  |  83 lines

  1. #pragma once
  2.  
  3. const CommandT  cmd_OpenOptionsDialog   = 2000;
  4. const CommandT  cmd_SetOptions          = -2001;                // OK Button
  5. const CommandT  cmd_Go                  = 2003;
  6. const CommandT  cmd_SaveSettings        = 2004;
  7. const ResIDT    ALRT_OSErr              = 1000;
  8. const ResIDT    PPob_EditWindow         = 1000;
  9. const ResIDT    PPob_OptionsDialog      = 1001;
  10. const ResIDT    myBLID_Debug            = 1006;
  11. const ResIDT    myBLID_GoOnOpen         = 1010;
  12. const ResIDT    myBLID_AutoQuit         = 1011;
  13. const ResIDT    myBLID_BigBibTeX         = 1012;
  14. const PaneIDT   paneID_TextEdit         = 'TEDT';
  15. const PaneIDT   paneID_OKButton         = 'OKBT';
  16. const PaneIDT   paneID_CancelButton     = 'CNBT';
  17. const PaneIDT   paneID_Debug            = 3004;
  18. const PaneIDT   paneID_GoOnOpen         = 3011;
  19. const PaneIDT   paneID_AutoQuit         = 3012;
  20. const PaneIDT   paneID_BigBibTeX         = 3013;
  21.  
  22. // ----------------------------------------------------------------------
  23. // These constants are associated with the preferences file.  Note that all
  24. // strings *must* be Pascal strings
  25.  
  26.                                         // This string is displayed in the
  27.                                         // version field of the information
  28.                                         // window.  The version number is for
  29.                                         // the preferences file.
  30.  
  31. #define kCompanyString  "¥p1.0.3, Vince Darley"
  32.  
  33.                                         // This string is displayed beneath the
  34.                                         // file¥'s name next to the file¥'s
  35.                                         // icon at the top of the information
  36.                                         // window.  Identify the version of
  37.                                         // Bibtex that created the file
  38.                                         // here.
  39.  
  40. #define kFileSetString  "¥p(for BibTeX Fat 1.03)"
  41.  
  42.                                         // This string is imbedded in the
  43.                                         // application-missing resource
  44.                                         // (STR  -16397).  It identifies
  45.                                         // Bibtex as the application that
  46.                                         // created the preferences file.
  47.  
  48. #define kIdentString    "¥pthe application BibTeX Fat"
  49.  
  50.                                         // This is the name of the preferences
  51.                                         // file.
  52.  
  53. #define kPrefFileName   "¥pBibTeX Preferences"
  54.  
  55.                                         // This is the version number that gets
  56.                                         // displayed if you have "Show version"
  57.                                         // selected in the Views control panel.
  58. #define kVersNumString  "¥p1.0.3"
  59.                                         // The next 4 values are not displayed
  60.                                         // anywhere, but they are stored in the
  61.                                         // vers resources of the preferences
  62.                                         // file.  A file with version number
  63.                                         // 2.1.3b1 would have major revision
  64.                                         // number 0x02, minor an bug revision
  65.                                         // 0x13, stage is betaStage, and the
  66.                                         // non release version is 0x01.  The
  67.                                         // constant kStage must be one of
  68.                                         // developStage, alphaStage, betaStage,
  69.                                         // or finalStage.
  70.  
  71. const UInt8 kMajorRevision          = 0x01;
  72. const UInt8 kMinorAndBugRevision    = 0x03;
  73. const UInt8 kStage                  = finalStage;
  74. const UInt8 kNonReleaseRevision     = 0x00;
  75.  
  76.                                         // These are the default settings for
  77.                                         // Go On Open and Auto Quit.
  78.  
  79. const Boolean kGoOnOpenDefault      = true;
  80. const Boolean kAutoQuitDefault      = false;
  81.  
  82. // ----------------------------------------------------------------------
  83.